home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Handler / c / ClickOK next >
Text File  |  1995-07-09  |  465b  |  20 lines

  1. #include "DeskLib:Wimp.h"
  2. #include "DeskLib:Icon.h"
  3. #include "DeskLib:Handler.h"
  4.  
  5.  
  6. extern BOOL Handler_ClickOK(event_pollblock *event, void *reference)
  7. {
  8.   UNUSED( reference);
  9.   
  10.   if (!event->data.mouse.button.data.menu)               /* Not a MENU click */
  11.   {
  12.     Icon_Select(event->data.mouse.window, event->data.mouse.icon);
  13.     Icon_ClickWait(33);
  14.     Icon_Deselect(event->data.mouse.window, event->data.mouse.icon);
  15.     return(TRUE);
  16.   }
  17.  
  18.   return(FALSE);
  19. }
  20.